From a4598567b9dd231b3bfd885bc59fdf453afe7433 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Fri, 4 Jun 2021 09:47:26 -0400 Subject: [PATCH] icontheme: Add detail to the 'not found' message Name the icon theme we're using. Fixes: #2271 --- gtk/gtkicontheme.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtkicontheme.c b/gtk/gtkicontheme.c index c0b33c6761..208c36d715 100644 --- a/gtk/gtkicontheme.c +++ b/gtk/gtkicontheme.c @@ -2269,7 +2269,7 @@ real_choose_icon (GtkIconTheme *self, { GTK_NOTE(ICONFALLBACK, { char *s = g_strjoinv (", ", (char **)icon_names); - g_message ("No icon found for: %s", s); + g_message ("No icon found in %s (or fallbacks) for: %s", self->current_theme, s); g_free (s); }); icon = icon_paintable_new ("image-missing", size, scale); -- 2.30.2